home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / CDROMAPP / MK.BAT < prev   
Encoding:
DOS Batch File  |  1993-02-16  |  497 b   |  28 lines

  1.     @echo off
  2. rem
  3. rem Command Lines to build the CDROM applications
  4. rem
  5.     if not (%debug%)==(ON) goto label05
  6.     @echo on
  7.     :label05
  8.  
  9.     if (%1)==()    goto help
  10.     if (%1)==(BCC) goto bcc
  11.     if (%1)==(bcc) goto bcc
  12.  
  13. :msc
  14.     nmake S=L M=4 -f makefile
  15.     goto done
  16.  
  17. :bcc
  18.     make BCC=1 S=l M=4 -f makefile
  19.     goto done
  20.  
  21. :help
  22.     echo To Use: DOS\ MK [MSC or BCC]
  23.     echo Where:           MSC specifies Microsoft C
  24.     echo          BCC specifies Borland C
  25.  
  26. :done
  27.  
  28.